home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 2: CDPD 1 / Almathera Ten on Ten - Disc 2: CDPD 1.iso / pd / 201-225 / 214 / runback / aztec.c < prev    next >
C/C++ Source or Header  |  1995-03-13  |  199b  |  15 lines

  1. /* HasASpace(s):    Return 1 if there is a space in string s.
  2.  *            Return 0 otherwise.
  3. */
  4.  
  5. HasASpace(s)
  6. char *s;
  7. {
  8.     char *temp=s;
  9.     while (*temp) {
  10.         if (*(temp++) == ' ')
  11.             return(1);
  12.     }
  13.     return(0);
  14. }
  15.